home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus Special 15 / AMIGAplus Sonderheft 15 (1998)(ICP)(DE)[!].iso / devs / mountlist_wiz < prev    next >
Text File  |  1977-12-31  |  2KB  |  44 lines

  1. /* $VER: WizMountlist 3.0 Copyright © 1996 Adam Levin-Delson   All Rights Reserved  (02.03.96)
  2.  *
  3.  * Wizard-Handler Mountlist
  4.  *
  5.  */
  6.  
  7. /*
  8.  
  9. Special Wizard-Handler mountlist values:
  10.  
  11. Control specifies the serial communication attributes.  It must consist of
  12. four chacters surrounded by double quotes ("DPSH", for example "801N"):
  13.  
  14.      D        P           S       H
  15.     ---      ---         ---     ---
  16.  
  17.     Data     Parity      Stop    Handshaking
  18.     Bits                 Bits
  19.  
  20.      7        N (none)    0       N (none)
  21.      8        O (odd)     1       X (Xon/Xoff)
  22.               E (even)    2       R (RTS/CTS)
  23.               M (mark)            B (both Xon/Xoff and RTS/CTS)
  24.               S (space)
  25.  
  26.  
  27. Reserved is used to indicate whether the Wizard's files should all be
  28.          brought down to the Amiga when the handler is mounted (Reserved=1),
  29.          or only when each file is referenced (Reserved=2).
  30. */
  31.  
  32. Wiz:
  33.     EHandler    = l:Wizard-Handler  /* The path to the handler. */
  34.     Device      = serial.device     /* The name of the serial device. */
  35.     Unit        = 0                 /* The unit number of the serial device. */
  36.     Baud        = 9600              /* The Baud rate of the device. */
  37.     Control     = "8O1N"            /* The parameter sof the device (see above). */
  38.     Reserved    = 2                 /* Bring all files down (=1) or bring only referenced files down (=2). */
  39.     Activate    = 1                 /* Activate this handler as soon as it's mounted. */
  40.     StackSize   = 4000              /* The handler's stack size. */
  41.     Priority    = 0                 /* Priority is controlled from within the handler. */
  42.     GlobVec     = -1                /* Non-BCPL. */
  43. #
  44.